home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / MEDICAL / 1752.ZIP / MHD.ZIP / MHTEXT.PRG < prev    next >
Text File  |  1986-07-06  |  3KB  |  81 lines

  1. * MHTEXT   DB3 PLUS                                    REVISION 06/02/86
  2. *
  3. STORE [ ] TO choice
  4. STORE [ ] TO waiting
  5. CLEAR
  6. * Allow 22 lines of text per screen
  7. TEXT
  8.  
  9.  
  10.                       ANTIMICROBIAL DRUG DATABASE
  11.  
  12.  
  13.      With the large number of antibiotics being introduced in the market-
  14. place, it becomes increasingly difficult for the physician to distinguish
  15. between them and to know which ones might be indicated for specific infectious
  16. diseases. This has created a state of confusion for physicians who must
  17. prescribe antimicrobial agents with intelligence and restraint.
  18.  
  19.      The purpose of this set of programs is to provide the physician with a 
  20. means of quickly scanning information that will aid the decision process. The 
  21. program DOES NOT make any decisions. It functions by accepting criteria 
  22. outlined by the physician, which it then uses to perform a search through the 
  23. database for drugs which match the specified information. ALL THE DATA that 
  24. matches is then presented for review. Any drug that does not match is 
  25. eliminated from the selection.
  26.  
  27.      
  28.  
  29.  
  30. ENDTEXT
  31. ACCEPT 'Press RETURN for more' TO waiting
  32. CLEAR
  33. TEXT
  34.      The drugs included in this database were selected with a view towards 
  35. being used in an obstetrical-gynecological practice. There was no attempt to 
  36. include every available anti-infective agent. The program's only purpose is to 
  37. find the set of drugs that meet the clinical criteria, or the spectrum of 
  38. organism sensitivity specified by the clinician using the program.
  39.  
  40.      It is meant to help the clinician answer the question, "Which drugs, out 
  41. of all those available, are going to be the optimum choice in this particular 
  42. situation?" Aside from individual monographs, there is no printed reference 
  43. material that can easily supply an answer to this difficult question.
  44.  
  45.      Information that can be found quickly and easily elsewhere is not 
  46. included. After the selection of a drug has been made, it is a relatively 
  47. simple matter to look up more detailed information about that particular drug 
  48. in standard reference works. 
  49.  
  50.      A decision support system operating on a small microcomputer can be 
  51. overburdened by too much data. To be practical and useful, a system must 
  52. provide the user with a means of tailoring the database to personal needs. 
  53. Because specialization is making every physician's needs increasingly 
  54. different in every field, the system includes methods whereby appropriate 
  55. drugs can be added or deleted by the individual user. 
  56. ENDTEXT
  57. ACCEPT 'Press RETURN for more' TO waiting
  58. DO WHILE choice = [ ]
  59.    CLEAR
  60.    ? '  0. Return to main menu'
  61.    ? '  1. Characteristics of cephalosporins and aminoglycosides'
  62.    ? '  2. Bacteriology of pelvic infections'
  63.    ? '  3. Treatment of salpingitis'
  64.    WAIT 'Enter your choice ' TO choice
  65.    IF choice < '0' .OR. choice > '3'
  66.       STORE [ ] TO choice
  67.    ENDIF 
  68.    DO CASE
  69.       CASE choice = '0'
  70.          RETURN
  71.       CASE choice = '1'
  72.          DO MHTEXT1
  73.       CASE choice = '2'
  74.          DO MHTEXT2
  75.       CASE choice = '3'
  76.          DO MHTEXT3
  77.    ENDCASE
  78. ENDDO WHILE choice = [ ]
  79. RETURN
  80.  
  81.